From 33788f79da6e83e14027826ed94723303900ee00 Mon Sep 17 00:00:00 2001 From: "kaf24@viper.(none)" Date: Sun, 6 Feb 2005 12:07:18 +0000 Subject: [PATCH] bitkeeper revision 1.1159.223.71 (42060876pgZEpnal0wuK3VOOWP9zCQ) Fix build system to rebuild file containing banner text every time. Signed-off-by: keir.fraser@cl.cam.ac.uk --- xen/Makefile | 3 ++- xen/arch/x86/Makefile | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xen/Makefile b/xen/Makefile index 33b03f4854..57a89ad454 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -54,8 +54,9 @@ $(TARGET): delete-unfresh-files include/xen/compile.h $(MAKE) -C drivers $(MAKE) -C arch/$(TARGET_ARCH) +# drivers/char/console.o may contain static banner/compile info. Blow it away. delete-unfresh-files: - rm -f include/xen/banner.h include/xen/compile.h + rm -f include/xen/banner.h include/xen/compile.h drivers/char/console.o $(MAKE) -C arch/$(TARGET_ARCH) delete-unfresh-files # compile.h contains dynamic build info. Rebuilt on every 'make' invocation. diff --git a/xen/arch/x86/Makefile b/xen/arch/x86/Makefile index aa6caae098..9a6029dcaf 100644 --- a/xen/arch/x86/Makefile +++ b/xen/arch/x86/Makefile @@ -36,8 +36,7 @@ clean: rm -f x86_64/*.o x86_64/*~ x86_64/core rm -f mtrr/*.o mtrr/*~ mtrr/core -# setup.o contains bits of compile.h so it must be blown away delete-unfresh-files: - rm -f setup.o + # nothing .PHONY: default clean delete-unfresh-files -- 2.30.2